home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / demos / OpenGL / globe / Makefile < prev    next >
Makefile  |  1996-11-11  |  378b  |  25 lines

  1. #! smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. TARGETS    = globe
  6.  
  7. GLDEBUG ?= no
  8. #if $(GLDEBUG) != "no"
  9. OPTIMIZER = -g
  10. #endif
  11.  
  12. TOOLKITDIR ?= ../
  13.  
  14. LIBGLUT = $(TOOLKITDIR)/lib/libglut.a
  15. LLDLIBS = $(LIBGLUT) -lInventor -lGLU -lGL -lXmu -lXext -lX11 -lm
  16.  
  17. C++FILES = globe.c++
  18.  
  19. LC++INCS = -I$(TOOLKITDIR)/include
  20. LC++OPTS = -fullwarn
  21.  
  22. default: $(TARGET)
  23.  
  24. include $(COMMONRULES)
  25.